home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Objects / funcobject.c < prev    next >
Text File  |  1995-12-21  |  5KB  |  212 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Function object implementation */
  26.  
  27. #include "allobjects.h"
  28. #include "compile.h"
  29. #include "structmember.h"
  30.  
  31. object *
  32. newfuncobject(code, globals)
  33.     object *code;
  34.     object *globals;
  35. {
  36.     funcobject *op = NEWOBJ(funcobject, &Functype);
  37.     if (op != NULL) {
  38.         object *doc;
  39.         object *consts;
  40.         INCREF(code);
  41.         op->func_code = code;
  42.         INCREF(globals);
  43.         op->func_globals = globals;
  44.         op->func_name = ((codeobject *)code)->co_name;
  45.         INCREF(op->func_name);
  46.         op->func_defaults = NULL; /* No default arguments */
  47.         consts = ((codeobject *)code)->co_consts;
  48.         if (gettuplesize(consts) >= 1) {
  49.             doc = gettupleitem(consts, 0);
  50.             if (!is_stringobject(doc))
  51.                 doc = None;
  52.         }
  53.         else
  54.             doc = None;
  55.         INCREF(doc);
  56.         op->func_doc = doc;
  57.     }
  58.     return (object *)op;
  59. }
  60.  
  61. object *
  62. getfunccode(op)
  63.     object *op;
  64. {
  65.     if (!is_funcobject(op)) {
  66.         err_badcall();
  67.         return NULL;
  68.     }
  69.     return ((funcobject *) op) -> func_code;
  70. }
  71.  
  72. object *
  73. getfuncglobals(op)
  74.     object *op;
  75. {
  76.     if (!is_funcobject(op)) {
  77.         err_badcall();
  78.         return NULL;
  79.     }
  80.     return ((funcobject *) op) -> func_globals;
  81. }
  82.  
  83. object *
  84. PyFunction_GetDefaults(op)
  85.     object *op;
  86. {
  87.     if (!is_funcobject(op)) {
  88.         err_badcall();
  89.         return NULL;
  90.     }
  91.     return ((funcobject *) op) -> func_defaults;
  92. }
  93.  
  94. int
  95. PyFunction_SetDefaults(op, defaults)
  96.     object *op;
  97.     object *defaults;
  98. {
  99.     if (!is_funcobject(op)) {
  100.         err_badcall();
  101.         return -1;
  102.     }
  103.     if (defaults == None)
  104.         defaults = NULL;
  105.     else if (is_tupleobject(defaults))
  106.         XINCREF(defaults);
  107.     else {
  108.         err_setstr(SystemError, "non-tuple default args");
  109.         return -1;
  110.     }
  111.     XDECREF(((funcobject *) op) -> func_defaults);
  112.     ((funcobject *) op) -> func_defaults = defaults;
  113.     return 0;
  114. }
  115.  
  116. /* Methods */
  117.  
  118. #define OFF(x) offsetof(funcobject, x)
  119.  
  120. static struct memberlist func_memberlist[] = {
  121.     {"func_code",    T_OBJECT,    OFF(func_code),        READONLY},
  122.     {"func_globals",T_OBJECT,    OFF(func_globals),    READONLY},
  123.     {"func_name",    T_OBJECT,    OFF(func_name),        READONLY},
  124.     {"__name__",    T_OBJECT,    OFF(func_name),        READONLY},
  125.     {"func_defaults",T_OBJECT,    OFF(func_defaults),    READONLY},
  126.     {"func_doc",    T_OBJECT,    OFF(func_doc)},
  127.     {"__doc__",    T_OBJECT,    OFF(func_doc)},
  128.     {NULL}    /* Sentinel */
  129. };
  130.  
  131. static object *
  132. func_getattr(op, name)
  133.     funcobject *op;
  134.     char *name;
  135. {
  136.     if (name[0] != '_' && getrestricted()) {
  137.         err_setstr(RuntimeError,
  138.           "function attributes not accessible in restricted mode");
  139.         return NULL;
  140.     }
  141.     return getmember((char *)op, func_memberlist, name);
  142. }
  143.  
  144. static void
  145. func_dealloc(op)
  146.     funcobject *op;
  147. {
  148.     DECREF(op->func_code);
  149.     DECREF(op->func_globals);
  150.     DECREF(op->func_name);
  151.     XDECREF(op->func_defaults);
  152.     XDECREF(op->func_doc);
  153.     DEL(op);
  154. }
  155.  
  156. static object*
  157. func_repr(op)
  158.     funcobject *op;
  159. {
  160.     char buf[140];
  161.     if (op->func_name == None)
  162.         sprintf(buf, "<anonymous function at %lx>", (long)op);
  163.     else
  164.         sprintf(buf, "<function %.100s at %lx>",
  165.             getstringvalue(op->func_name),
  166.             (long)op);
  167.     return newstringobject(buf);
  168. }
  169.  
  170. static int
  171. func_compare(f, g)
  172.     funcobject *f, *g;
  173. {
  174.     int c;
  175.     if (f->func_globals != g->func_globals)
  176.         return (f->func_globals < g->func_globals) ? -1 : 1;
  177.     c = cmpobject(f->func_defaults, g->func_defaults);
  178.     if (c != 0)
  179.         return c;
  180.     return cmpobject(f->func_code, g->func_code);
  181. }
  182.  
  183. static long
  184. func_hash(f)
  185.     funcobject *f;
  186. {
  187.     long h;
  188.     h = hashobject(f->func_code);
  189.     if (h == -1) return h;
  190.     h = h ^ (long)f->func_globals;
  191.     if (h == -1) h = -2;
  192.     return h;
  193. }
  194.  
  195. typeobject Functype = {
  196.     OB_HEAD_INIT(&Typetype)
  197.     0,
  198.     "function",
  199.     sizeof(funcobject),
  200.     0,
  201.     (destructor)func_dealloc, /*tp_dealloc*/
  202.     0,        /*tp_print*/
  203.     (getattrfunc)func_getattr, /*tp_getattr*/
  204.     0,        /*tp_setattr*/
  205.     (cmpfunc)func_compare, /*tp_compare*/
  206.     (reprfunc)func_repr, /*tp_repr*/
  207.     0,        /*tp_as_number*/
  208.     0,        /*tp_as_sequence*/
  209.     0,        /*tp_as_mapping*/
  210.     (hashfunc)func_hash, /*tp_hash*/
  211. };
  212.